home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 026a / bbsparse.zip / ALLTRIM.PRG next >
Text File  |  1990-02-11  |  288b  |  14 lines

  1. * Program ...: Alltrim UDF
  2. * Author ....: Michael P. Dean
  3. * Date ......: Tue  12-19-1989
  4. * Versions ..: dBASE IV Version 1.0 & 1.1
  5. * Notes .....: Trim both leading and trailing spaces.
  6.  
  7. FUNCTION Alltrim
  8. PARAMETER lc_trim
  9.  
  10. RETURN(LTRIM(RTRIM(lc_trim)))
  11.  
  12. * EOP: Alltrim (UDF)
  13.  
  14.